projects
/
gpsbabel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8264c29
)
Add missing semicolon at the end of a statement.
author
oliskoli
<oliskoli>
Wed, 26 Jul 2006 20:05:50 +0000
(20:05 +0000)
committer
oliskoli
<oliskoli>
Wed, 26 Jul 2006 20:05:50 +0000
(20:05 +0000)
gbfile.c
patch
|
blob
|
history
diff --git
a/gbfile.c
b/gbfile.c
index 147a4d4de1ce41b4580a6be066932da033959ac9..bbca7a24ed13fbc6ca584a8a4ec28a81527732ed 100644
(file)
--- a/
gbfile.c
+++ b/
gbfile.c
@@
-549,7
+549,7
@@
gbfputflt(const float f, gbfile *file)
int
gbfputcstr(const char *s, gbfile *file)
{
- return gbfwrite(s, 1, strlen(s) + 1, file)
+ return gbfwrite(s, 1, strlen(s) + 1, file)
;
}
int